From 954d3e9018ae2409553122924210802db5c53837 Mon Sep 17 00:00:00 2001 From: Iain Lane Date: Mon, 26 Jul 2021 11:30:57 +0100 Subject: [PATCH] rules: Only skip the cloud providers on Ubuntu itself For everything else the main/universe distinction doesn't apply --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index b4c0efa3fa..8fff11736e 100755 --- a/debian/rules +++ b/debian/rules @@ -119,7 +119,7 @@ else configure_flags_deb += -Dinstall-tests=true endif -ifeq ($(shell dpkg-vendor --derives-from Ubuntu && echo yes), yes) +ifeq ($(shell dpkg-vendor --is Ubuntu && echo yes), yes) # Not in main repository configure_flags_deb += -Dcloudproviders=disabled endif -- 2.30.2